/* 全局样式调整 */
body {
    font-family: Arial, sans-serif;
    /* 选择易读的字体 */
    line-height: 1.6;
    /* 调整行高，提高可读性 */
    color: #333;
    /* 设置文本颜色 */
    background-color: #f9f9f9;
    /* 设置背景颜色，与文本形成对比 */
    margin: 0;
    padding: 0;
}

.main-container-j {
    width: 80%;
    /* 限制容器宽度，提高响应性 */
    margin: 0 auto;
    /* 居中显示 */
    padding: 20px;
    /* 添加内边距 */
    background-color: #fff;
    /* 白色背景，与页面其他部分区分 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    /* 添加阴影效果 */
}

.article-container {
    margin-bottom: 20px;
    /* 增加底部间距 */
}

.article h2,
.article h3 {
    color: #555;
    /* 调整标题颜色 */
}

.article p {
    font-size: 16px;
    /* 设置段落字体大小 */
    margin-bottom: 20px;
    /* 增加段落之间的间距 */
}

/* 图文展示项样式调整 */
.image-text-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f4f4f4;
    /* 浅灰色背景，与文本形成对比 */
    padding: 20px;
    /* 添加内边距 */
    margin-bottom: 20px;
    /* 增加底部间距 */
    border-radius: 10px;
    /* 圆角边框 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* 添加阴影效果 */
}

.image-text-item img {
    width: 100%;
    max-width: 600px;
    /* 限制图片最大宽度 */
    border-radius: 10px;
    /* 圆角图片 */
    margin-bottom: 10px;
    /* 图片与文本之间的间距 */
}

.image-text-item p {
    font-size: 14px;
    /* 设置文本字体大小 */
    color: #666;
    /* 调整文本颜色 */
    text-align: center;
    /* 文本居中显示 */
}